From: Dave Love Date: Fri, 10 Oct 2003 18:09:38 +0000 (+0000) Subject: Don't bind stop. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~25239 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=1aedcd08623c38b5bc1bfcdc1dadff34bbff6c6a;p=emacs.git Don't bind stop. --- diff --git a/lisp/bindings.el b/lisp/bindings.el index 04353e9c7ec..ab5bb30699e 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -780,7 +780,9 @@ language you are using." (define-key global-map [redo] 'repeat-complex-command) (define-key global-map [again] 'repeat-complex-command) ; Sun keyboard (define-key global-map [open] 'find-file) ; Sun -(define-key global-map [stop] 'keyboard-quit) ; Sun +;; The following wouldn't work to interrupt running code since C-g is +;; treated specially in the event loop. +;; (define-key global-map [stop] 'keyboard-quit) ; Sun ;; (define-key global-map [clearline] 'function-key-error) (define-key global-map [insertline] 'open-line) (define-key global-map [deleteline] 'kill-line)